home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / utilities / cli / waitnotify-1.1.lha / WaitNotify / DMakefile < prev    next >
Encoding:
Makefile  |  1994-12-14  |  1.1 KB  |  38 lines

  1. # DICE Makefile
  2. #
  3. # (c)Copyright 1994 by Tobias Ferber
  4. #
  5. # This file is part of the WaitNotify distribution.
  6. #
  7. # WaitNotify is free software; you can redistribute it and/or modify
  8. # it under the terms of the GNU General Public License as published
  9. # by the Free Software Foundation; either version 1 of the License,
  10. # or (at your option) any later version.
  11. #
  12. # WaitNotify is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  15. # See the GNU General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU General Public License
  18. # along with the program; see the file COPYING.  If not, write to
  19. # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  20.  
  21. CC=dcc
  22. CFLAGS=-3.1 -s
  23.  
  24. all: waitnotify waitnotify.doc
  25.  
  26.  
  27. waitnotify: waitnotify.c
  28.     $(CC) $(CFLAGS) -o%(left) %(right)
  29.  
  30. waitnotify.doc: waitnotify.c
  31.     autodoc -C %(right) > %(left)
  32.  
  33. clean:
  34.     delete quiet waitnotify waitnotify.doc
  35.  
  36. dist: all
  37.     copy `cpdist -n` ram:waitnotify
  38.